@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.bg-white {
  background: #fff;
}

.width-100 {
  width: 100%;
}
.pd5 {
  padding: 5px;
}
.mlr-5 {
  margin: 0 5px;
}
.mt-10 {
  margin-top: 10px;
}
.mt-15 {
  margin-top: 15px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-30 {
  margin-top: 30px;
}

.ml-30 {
  margin-left: 30px;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.text-right {
  text-align: right;
}
.text-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.flex {
  display: flex;
}
.justify-content-between {
  justify-content: space-between;
}
.justify-content-center{
  justify-content: center;
}

ul {
  padding-left: 0;
}

body {
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100%;
}

.header-top {
  padding: 5px 0;
  background: rgb(46,124,186);
}

.header-top .header-top-info {
  line-height: 30px;
  color: #fff
}


.header-ad {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-ad img{
  width: 80%;
  max-width: 1000px;
}

.header-top .header-top-search {
  position: relative;
  border-radius: 3px;
  padding-left: 10px;
  padding-right: 80px;
  border-inline: none;
  background: #fff;
  margin: 10px;
}
.header-top .header-top-search input {
  background: none;
  border: none;
  height: 30px;
  line-height: 30px;
  outline: none;
  color: #000;
  width: 100%;
}
.header-top .header-top-search .search-btn {
  position: absolute;
  width: 80px;
  color: #333;
  background: none;
  border: none;
  height: 100%;
  line-height: 28px;
}

.search-btn svg {
  width: 16px;
  display: inline-block;
  vertical-align: middle;
  margin-top: -2px;
}

.header-ad {
  text-align: center;
  height: 206px;
  background-size: 100% 100%;
}

.header-nav {
  position: relative;
}

.header-nav .navbar-default {
  background: none;
  border: none;
  margin-bottom: 0;
  background: rgb(1,82,147);
}

.navbar-default .navbar-collapse {
  border: none;
}
.navbar-default .navbar-brand {
  color: #fff;
}

.navbar-default .navbar-toggle {
  border-color: #fff;
}

.navbar-default .navbar-toggle .icon-bar {
  background-color: #fff;
}

.navbar-default .navbar-brand {
  font-size: 18px;
  font-weight: 600;
  display: block;
}
.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus {
  background-color: #2c3e50;
}
.navbar-default .navbar-brand:hover {
  color: #fff;
}

.header-nav .nav > li > a {
  font-size: 18px;
  font-family: Poppins,sans-serif;
  letter-spacing: 2.9px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  padding: 22px 15px;
}
.navbar-nav > li {
  position: inherit;
}
.navbar-nav > li  a {
  color: #fff;
  cursor: pointer;
}
.navbar-nav > li.active > a {
  color: #ff0;
}
.navbar-nav > li .down-menu {
  position: absolute;
  z-index: 9999;
  left: 0;
  right: 0;
  background: #e4e4e4;
  display: none;
}

.navbar-nav > li .down-menu a {
  display: inline-block;
  color: #0056b3;
  font-size: 16px;
  padding: 15px;
}

.header-nav .nav > li > a:hover,.header-nav .nav > li > a:focus {
  color: #ff0;
  text-decoration: none;
  background-color: transparent;
}

.header-nav .nav > li > a {
  position: relative;
}

.header-nav .nav > li > a::after {
  display: none;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -10px;
  content: '';
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #e4e4e4;
}

.header-nav .nav > li > a:hover::after{
  display: block;
  -webkit-animation-name: fadeIn;
  -webkit-animation-duration: .1s;
}

.header-nav .nav > li:hover .down-menu {
  display: block;
  -webkit-animation-name: fadeIn;
  -webkit-animation-duration: .1s;
}

.footer-info {
  margin-top: 20px;
}

.footer-info .footer-info-right {
  margin-top: 10px;
}

.fixed-ad {
  position: fixed;
  z-index: 999;
  bottom: 30%;
  right: 10px;
  width: 130px;
}

.fixed-ad img {
  max-width: 100%;
}


.center-ad a{
  display: inline-block;
  width: 100%;
}

.container-md {
  width: 90%;
  margin: auto;
}
@media (min-width: 1200px){
  .container-md {
    width: 970px;
    margin: auto;
  }
}

@media (min-width: 768px) {
  .navbar-default .navbar-brand {
    display: none;
  }
  .header-top .header-top-search {
    margin: 0;
  }
}

@media (max-width:992px){
  .center-ad a {
    height: 120px;
  }
}

@media (max-width: 768px) {
  .center-ad a {
    height: 80px;
  }
}

